其他
用 Python 实现手机自动答题,下一个百万获奖人可能就是你!
我们要让手机连接电脑,但是怎么让电脑自动控制手机呢?
手机上是显示文字的,但是怎么让电脑看懂你手机上的文字呢?
电脑知道了问题后如何借助网络搜答案呢?
让电脑能够控制手机,一般都是利用usb把手机连接到电脑上。然后借助ADB实现对手机的调控,包括点触、滑动、截图等等功能。
让电脑能够看懂文字,必然需要对手机屏幕截图,然后对截图中的文字识别即可
让电脑操控浏览器搜题,用python的库即可实现
实验前的准备
自动获取手机文字
1、利用ADB控制手机:
os.system("adb shell /system/bin/screencap -p /sdcard/screen.png") #截取屏幕,图片命名为screen.png
os.system("adb pull /sdcard/screen.png C:/Users/jia/Desktop") #将截图保存到电脑在桌面
os.system("adb shell input tap {}{}".format(x,y))#x ,y为点击处的像素点
#adb手机截图
def get_image():
os.system('adb shell screencap -p /sdcard/image.png')
os.system('adb pull /sdcard/image.png .')
xigua_size = (150,530,1800,800)
2、对图片文字识别:
tesseract imagename outbase [-l lang] [-psm N] [configfile...]
#读取图像
get_image()
img=Image.open('image.png')
img_que = img.crop(xigua_size)
#识别截图文字
question=pytesseract.image_to_string(img_que,lang='chi_sim')
question=question.replace(' ','').replace('\n','')
que = question[question.find('.')+1: question.find('?')]
自动搜题的实现
1、浏览器操作:
webbrowser 有以下方法:
webbrowser.open(url[, new=0[, autoraise=1]])
webbrowser.open_new(url)
webbrowser.open_new_tab(url)
webbrowser.get([name])
webbrowser.register(name, construtor[, instance])
#引擎搜索
url = "https://www.baidu.com/s?wd=" +que
webbrowser.open(url)
get_image()
img=Image.open('image.png')
img_que = img.crop(xigua_size)
question1= pytesseract.image_to_string(img_que,)
question1=question1.replace(' ','').replace('\n','')
que = question1[question.find('.')+1: question.find('?')]
while True:
while(question1==question):
get_image()
img = Image.open('image.png')
img_que = img.crop(xigua_size)
question1 = pytesseract.image_to_string(img_que,)
question1 = question1.replace(' ', '').replace('\n', '')
que = question1[question.find('.') + 1: question.find('?')]
get_image()
img = Image.open('image.png')
img_que = img.crop(xigua_size)
# 识别截图文字
question = pytesseract.image_to_string(img_que,)
question = question.replace(' ', '').replace('\n', '')
que = question[question.find('.') + 1: question.find('?')]
continue
while(question1!=question):
get_image()
img = Image.open('image.png')
img_que = img.crop(xigua_size)
# 识别截图文字
question = pytesseract.image_to_string(img_que,)
question1 = pytesseract.image_to_string(img_que,)
question1 = question1.replace(' ', '').replace('\n', '')
que = question1[question.find('.') + 1: question.find('?')]
question = question.replace(' ', '').replace('\n', '')
que = question[question.find('.') + 1: question.find('?')]
# 引擎搜索
url = "https://www.baidu.com/s?wd=" + que
webbrowser.open(url)
continue
新勋章,新奖品,高流量,还有更多福利等你来拿~
更多精彩推荐
☞调查了 10,975 位 Go 语言开发者,我们有了这些发现!
☞架构师前辈告诉你:代码该如何才能自己写得容易,别人看得也不痛苦